home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Adobe Graphics & Publishing SDK 1996 December
/
Adobe Graphics & Publishing SDK 1996 December.iso
/
pc
/
pm65sdk
/
sourcecode
/
pagemakerclasslibrary
/
queries
/
phandlequery.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-10-14
|
767b
|
41 lines
/*
*--- PHandleQuery.h ------------------------------------------------------
* Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
* Created on Thu, Oct 12, 1995 @ 10:00 PM by Paul Ferguson.
*
* Description:
*-------------------------------------------------------------------------
*/
#ifndef __PHandleQuery__
#define __PHandleQuery__
#ifdef __MWERKS__
#pragma once
#endif
#include "PMTypes.h"
#include "PQuery.h"
class PRequestBuf;
class PHandleQuery
{
protected:
PHandleQuery();
PHandleQuery(const ePMQuery op);
PHandleQuery(ePMQuery op, PRequestBuf& request);
~PHandleQuery();
void InitHandle();
PMHandle itsHandle;
const char * replyPtr;
};
#endif
// end of PHandleQuery.h